home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Musique / Quod Libet / quodlibet-3.3.0-installer.exe / bin / unittest / loader.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2014-12-31  |  11KB  |  316 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. '''Loading unittests.'''
  5. import os
  6. import re
  7. import sys
  8. import traceback
  9. import types
  10. from functools import cmp_to_key as _CmpToKey
  11. from fnmatch import fnmatch
  12. from  import case, suite
  13. __unittest = True
  14. VALID_MODULE_NAME = re.compile('[_a-z]\\w*\\.py$', re.IGNORECASE)
  15.  
  16. def _make_failed_import_test(name, suiteClass):
  17.     message = 'Failed to import test module: %s\n%s' % (name, traceback.format_exc())
  18.     return _make_failed_test('ModuleImportFailure', name, ImportError(message), suiteClass)
  19.  
  20.  
  21. def _make_failed_load_tests(name, exception, suiteClass):
  22.     return _make_failed_test('LoadTestsFailure', name, exception, suiteClass)
  23.  
  24.  
  25. def _make_failed_test(classname, methodname, exception, suiteClass):
  26.     
  27.     def testFailure(self):
  28.         raise exception
  29.  
  30.     attrs = {
  31.         methodname: testFailure }
  32.     TestClass = type(classname, (case.TestCase,), attrs)
  33.     return suiteClass((TestClass(methodname),))
  34.  
  35.  
  36. class TestLoader(object):
  37.     '''
  38.     This class is responsible for loading tests according to various criteria
  39.     and returning them wrapped in a TestSuite
  40.     '''
  41.     testMethodPrefix = 'test'
  42.     sortTestMethodsUsing = cmp
  43.     suiteClass = suite.TestSuite
  44.     _top_level_dir = None
  45.     
  46.     def loadTestsFromTestCase(self, testCaseClass):
  47.         '''Return a suite of all tests cases contained in testCaseClass'''
  48.         if issubclass(testCaseClass, suite.TestSuite):
  49.             raise TypeError('Test cases should not be derived from TestSuite. Maybe you meant to derive from TestCase?')
  50.         testCaseNames = self.getTestCaseNames(testCaseClass)
  51.         if not testCaseNames and hasattr(testCaseClass, 'runTest'):
  52.             testCaseNames = [
  53.                 'runTest']
  54.         loaded_suite = self.suiteClass(map(testCaseClass, testCaseNames))
  55.         return loaded_suite
  56.  
  57.     
  58.     def loadTestsFromModule(self, module, use_load_tests = True):
  59.         '''Return a suite of all tests cases contained in the given module'''
  60.         tests = []
  61.         for name in dir(module):
  62.             obj = getattr(module, name)
  63.             if isinstance(obj, type) and issubclass(obj, case.TestCase):
  64.                 tests.append(self.loadTestsFromTestCase(obj))
  65.                 continue
  66.         load_tests = getattr(module, 'load_tests', None)
  67.         tests = self.suiteClass(tests)
  68.         if use_load_tests and load_tests is not None:
  69.             
  70.             try:
  71.                 return load_tests(self, tests, None)
  72.             except Exception:
  73.                 e = None
  74.                 return _make_failed_load_tests(module.__name__, e, self.suiteClass)
  75.             
  76.  
  77.         return tests
  78.  
  79.     
  80.     def loadTestsFromName(self, name, module = None):
  81.         '''Return a suite of all tests cases given a string specifier.
  82.  
  83.         The name may resolve either to a module, a test case class, a
  84.         test method within a test case class, or a callable object which
  85.         returns a TestCase or TestSuite instance.
  86.  
  87.         The method optionally resolves the names relative to a given module.
  88.         '''
  89.         parts = name.split('.')
  90.         if module is None:
  91.             parts_copy = parts[:]
  92.             while parts_copy:
  93.                 
  94.                 try:
  95.                     module = __import__('.'.join(parts_copy))
  96.                 continue
  97.                 except ImportError:
  98.                     del parts_copy[-1]
  99.                     if not parts_copy:
  100.                         raise 
  101.                     continue
  102.                 
  103.  
  104.             parts = parts[1:]
  105.         obj = module
  106.         for part in parts:
  107.             parent = obj
  108.             obj = getattr(obj, part)
  109.         
  110.         if isinstance(obj, types.ModuleType):
  111.             return self.loadTestsFromModule(obj)
  112.         if None(obj, type) and issubclass(obj, case.TestCase):
  113.             return self.loadTestsFromTestCase(obj)
  114.         if None(obj, types.UnboundMethodType) and isinstance(parent, type) and issubclass(parent, case.TestCase):
  115.             name = parts[-1]
  116.             inst = parent(name)
  117.             return self.suiteClass([
  118.                 inst])
  119.         if None(obj, suite.TestSuite):
  120.             return obj
  121.         if None(obj, '__call__'):
  122.             test = obj()
  123.             if isinstance(test, suite.TestSuite):
  124.                 return test
  125.             if None(test, case.TestCase):
  126.                 return self.suiteClass([
  127.                     test])
  128.             raise None('calling %s returned %s, not a test' % (obj, test))
  129.         raise TypeError("don't know how to make test from: %s" % obj)
  130.  
  131.     
  132.     def loadTestsFromNames(self, names, module = None):
  133.         """Return a suite of all tests cases found using the given sequence
  134.         of string specifiers. See 'loadTestsFromName()'.
  135.         """
  136.         suites = [ self.loadTestsFromName(name, module) for name in names ]
  137.         return self.suiteClass(suites)
  138.  
  139.     
  140.     def getTestCaseNames(self, testCaseClass):
  141.         '''Return a sorted sequence of method names found within testCaseClass
  142.         '''
  143.         
  144.         def isTestMethod(attrname, testCaseClass = testCaseClass, prefix = self.testMethodPrefix):
  145.             if attrname.startswith(prefix):
  146.                 pass
  147.             return hasattr(getattr(testCaseClass, attrname), '__call__')
  148.  
  149.         testFnNames = filter(isTestMethod, dir(testCaseClass))
  150.         if self.sortTestMethodsUsing:
  151.             testFnNames.sort(key = _CmpToKey(self.sortTestMethodsUsing))
  152.         return testFnNames
  153.  
  154.     
  155.     def discover(self, start_dir, pattern = 'test*.py', top_level_dir = None):
  156.         """Find and return all test modules from the specified start
  157.         directory, recursing into subdirectories to find them. Only test files
  158.         that match the pattern will be loaded. (Using shell style pattern
  159.         matching.)
  160.  
  161.         All test modules must be importable from the top level of the project.
  162.         If the start directory is not the top level directory then the top
  163.         level directory must be specified separately.
  164.  
  165.         If a test package name (directory with '__init__.py') matches the
  166.         pattern then the package will be checked for a 'load_tests' function. If
  167.         this exists then it will be called with loader, tests, pattern.
  168.  
  169.         If load_tests exists then discovery does  *not* recurse into the package,
  170.         load_tests is responsible for loading all tests in the package.
  171.  
  172.         The pattern is deliberately not stored as a loader attribute so that
  173.         packages can continue discovery themselves. top_level_dir is stored so
  174.         load_tests does not need to pass this argument in to loader.discover().
  175.         """
  176.         set_implicit_top = False
  177.         if top_level_dir is None and self._top_level_dir is not None:
  178.             top_level_dir = self._top_level_dir
  179.         elif top_level_dir is None:
  180.             set_implicit_top = True
  181.             top_level_dir = start_dir
  182.         top_level_dir = os.path.abspath(top_level_dir)
  183.         if top_level_dir not in sys.path:
  184.             sys.path.insert(0, top_level_dir)
  185.         self._top_level_dir = top_level_dir
  186.         is_not_importable = False
  187.         if os.path.isdir(os.path.abspath(start_dir)):
  188.             start_dir = os.path.abspath(start_dir)
  189.             if start_dir != top_level_dir:
  190.                 is_not_importable = not os.path.isfile(os.path.join(start_dir, '__init__.py'))
  191.             
  192.         else:
  193.             
  194.             try:
  195.                 __import__(start_dir)
  196.             except ImportError:
  197.                 is_not_importable = True
  198.  
  199.             the_module = sys.modules[start_dir]
  200.             top_part = start_dir.split('.')[0]
  201.             start_dir = os.path.abspath(os.path.dirname(the_module.__file__))
  202.             if set_implicit_top:
  203.                 self._top_level_dir = self._get_directory_containing_module(top_part)
  204.                 sys.path.remove(top_level_dir)
  205.         if is_not_importable:
  206.             raise ImportError('Start directory is not importable: %r' % start_dir)
  207.         tests = list(self._find_tests(start_dir, pattern))
  208.         return self.suiteClass(tests)
  209.  
  210.     
  211.     def _get_directory_containing_module(self, module_name):
  212.         module = sys.modules[module_name]
  213.         full_path = os.path.abspath(module.__file__)
  214.         if os.path.basename(full_path).lower().startswith('__init__.py'):
  215.             return os.path.dirname(os.path.dirname(full_path))
  216.         return None.path.dirname(full_path)
  217.  
  218.     
  219.     def _get_name_from_path(self, path):
  220.         path = os.path.splitext(os.path.normpath(path))[0]
  221.         _relpath = os.path.relpath(path, self._top_level_dir)
  222.         if not not os.path.isabs(_relpath):
  223.             raise AssertionError('Path must be within the project')
  224.         if not not None.startswith('..'):
  225.             raise AssertionError('Path must be within the project')
  226.         name = None.replace(os.path.sep, '.')
  227.         return name
  228.  
  229.     
  230.     def _get_module_from_name(self, name):
  231.         __import__(name)
  232.         return sys.modules[name]
  233.  
  234.     
  235.     def _match_path(self, path, full_path, pattern):
  236.         return fnmatch(path, pattern)
  237.  
  238.     
  239.     def _find_tests(self, start_dir, pattern):
  240.         '''Used by discovery. Yields test suites it loads.'''
  241.         paths = os.listdir(start_dir)
  242.         for path in paths:
  243.             full_path = os.path.join(start_dir, path)
  244.             if os.path.isfile(full_path):
  245.                 if not VALID_MODULE_NAME.match(path):
  246.                     continue
  247.                 if not self._match_path(path, full_path, pattern):
  248.                     continue
  249.                 name = self._get_name_from_path(full_path)
  250.                 
  251.                 try:
  252.                     module = self._get_module_from_name(name)
  253.                 except:
  254.                     yield _make_failed_import_test(name, self.suiteClass)
  255.  
  256.                 mod_file = os.path.abspath(getattr(module, '__file__', full_path))
  257.                 realpath = os.path.splitext(os.path.realpath(mod_file))[0]
  258.                 fullpath_noext = os.path.splitext(os.path.realpath(full_path))[0]
  259.                 if realpath.lower() != fullpath_noext.lower():
  260.                     module_dir = os.path.dirname(realpath)
  261.                     mod_name = os.path.splitext(os.path.basename(full_path))[0]
  262.                     expected_dir = os.path.dirname(full_path)
  263.                     msg = '%r module incorrectly imported from %r. Expected %r. Is this module globally installed?'
  264.                     raise ImportError(msg % (mod_name, module_dir, expected_dir))
  265.                 yield self.loadTestsFromModule(module)
  266.                 continue
  267.             if not os.path.isdir(full_path) or os.path.isfile(os.path.join(full_path, '__init__.py')):
  268.                 continue
  269.             load_tests = None
  270.             tests = None
  271.             if fnmatch(path, pattern):
  272.                 name = self._get_name_from_path(full_path)
  273.                 package = self._get_module_from_name(name)
  274.                 load_tests = getattr(package, 'load_tests', None)
  275.                 tests = self.loadTestsFromModule(package, use_load_tests = False)
  276.             if load_tests is None:
  277.                 if tests is not None:
  278.                     yield tests
  279.                 for test in self._find_tests(full_path, pattern):
  280.                     yield test
  281.                 
  282.             else:
  283.                 
  284.                 try:
  285.                     yield load_tests(self, tests, pattern)
  286.                 except Exception:
  287.                     e = None
  288.                     yield _make_failed_load_tests(package.__name__, e, self.suiteClass)
  289.                 
  290.  
  291.         
  292.  
  293.  
  294. defaultTestLoader = TestLoader()
  295.  
  296. def _makeLoader(prefix, sortUsing, suiteClass = None):
  297.     loader = TestLoader()
  298.     loader.sortTestMethodsUsing = sortUsing
  299.     loader.testMethodPrefix = prefix
  300.     if suiteClass:
  301.         loader.suiteClass = suiteClass
  302.     return loader
  303.  
  304.  
  305. def getTestCaseNames(testCaseClass, prefix, sortUsing = cmp):
  306.     return _makeLoader(prefix, sortUsing).getTestCaseNames(testCaseClass)
  307.  
  308.  
  309. def makeSuite(testCaseClass, prefix = 'test', sortUsing = cmp, suiteClass = suite.TestSuite):
  310.     return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromTestCase(testCaseClass)
  311.  
  312.  
  313. def findTestCases(module, prefix = 'test', sortUsing = cmp, suiteClass = suite.TestSuite):
  314.     return _makeLoader(prefix, sortUsing, suiteClass).loadTestsFromModule(module)
  315.  
  316.